*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Apply to the whole page */
body {
  cursor: url('Images/Fish cursor.png'), auto;
background-color: black;
  background-image: url(./Images/BG/Black.jpg);
  background-attachment: fixed;
  min-height: 100vh;
}


.hero{
    width: 100%;
    height: 15vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    
}

nav{
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: url('Images/cat cursor.png'), pointer;
    

}


nav .logo{
    width: 80px;
    cursor: url('Images/cat cursor.png'), pointer;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
    font-family: AlteHaasGroteskRegular; 
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    
}

.tabs{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 5%;
}

.video-item video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-types{
    width:100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    padding: 20px 0%;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    cursor: url('Images/cat cursor.png'), pointer;
    color: #fff;
    z-index: 1;
}

.video-types ul li{
    list-style: none;
    display: inline-block;
    margin: 30px;
    font-family: AlteHaasGroteskRegular; 
}

.video-types ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

.tab-aesthetic h1{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

[data-tab-content] {
    display: none;
    
}

.active[data-tab-content] {
    display: block;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    padding: 20px 0%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: AlteHaasGroteskRegular; 
    z-index: 1;

}

.content{
    text-align: center;
    display: inline-block;

}

.title-h1 {
    margin-top: 0px;
    font-size: 60px;
    font-family: AlteHaasGroteskBold; 
    color: #fff;
    font-weight: 100;
    white-space: nowrap;
    text-align: center;
    overflow: hidden; /* Ensures text is hidden until typed */
    border-right: 0.1em solid rgb(255, 255, 255); /* The cursor */
    white-space: nowrap; /* Keeps text on a single line */ 
    margin: 0 auto;
    width: 20ch;
    animation: 
    typing 1.2s steps(20, end),
    blink-caret 1.2s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 40%;
    }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgb(255, 255, 255); }
}

.subtitle-h4{
    font-size: 15px;
    font-family: AlteHaasGroteskRegular; 
    color: #fff;
    font-weight: 20;
    text-align: center;
    margin-bottom: 0;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.social-links {
    display: flex;
    padding-top: 150px;
    justify-content: center;
    gap: 50px;
}

.social-links a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

/* stagger effect (each icon comes up one by one) */
.social-links a:nth-child(1) { animation-delay: 0.1s; }
.social-links a:nth-child(2) { animation-delay: 0.2s; }
.social-links a:nth-child(3) { animation-delay: 0.3s; }
.social-links a:nth-child(4) { animation-delay: 0.4s; }
.social-links a:nth-child(5) { animation-delay: 0.5s; }
.social-links a:nth-child(6) { animation-delay: 0.6s; }
.social-links a:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icon {
    position: relative;
    width: 100px;
    height: 100px;
}

.icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* default (black & white) */
.icon-default {
    opacity: 1;
}

/* colored version hidden */
.icon-hover {
    opacity: 0;
}

/* on hover → swap */
.icon:hover .icon-default {
    opacity: 0;
}

.icon:hover .icon-hover {
    opacity: 1;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  font-size: 14px;
  font-family: AlteHaasGroteskRegular;
  color:#fff
}